home *** CD-ROM | disk | FTP | other *** search
- (**************************************************************************
-
- $RCSfile: RamDrive.mod $
- Description: Interface to ramdrive.device
-
- Created by: fjc (Frank Copeland)
- $Revision: 3.7 $
- $Author: fjc $
- $Date: 1995/01/26 02:39:55 $
-
- $VER: ramdrive_protos.h 36.3 (7.11.90)
- Includes Release 40.15
-
- (C) Copyright 1985-1993 Commodore-Amiga, Inc.
- All Rights Reserved
-
- Oberon-A interface Copyright © 1994-1995, Frank Copeland.
- This file is part of the Oberon-A Interface.
- See Oberon-A.doc for conditions of use and distribution.
-
- ***************************************************************************)
-
- <* STANDARD- *> <* INITIALISE- *> <* MAIN- *>
- <*$ CaseChk- IndexChk- LongVars+ NilChk- *>
- <*$ RangeChk- StackChk- TypeChk- OvflChk- *>
-
- MODULE [2] RamDrive;
-
- IMPORT e := Exec;
-
-
- (*-- RamDrive Base variable --------------------------------------------*)
-
- CONST
-
- ramDriveName * = "ramdrive.device";
-
- VAR
-
- base * : e.DevicePtr;
-
- (*-- Device Functions ---------------------------------------------------*)
-
-
- (*--- functions in V34 or higher (Release 1.3) ---*)
-
- PROCEDURE KillRAD0* [base,-42] ()
- : e.LSTRPTR;
-
- (*--- functions in V36 or higher (Release 2.0) ---*)
-
- PROCEDURE KillRAD* [base,-48]
- ( unit [0] : LONGINT )
- : e.LSTRPTR;
-
- BEGIN base := NIL
- END RamDrive.
-